home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’97 / Sessions ’97 / Multiplatform Code⁄Data Sharing / HelloBothWorlds / GE / LibHdr / geqdraw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  344 b   |  26 lines  |  [TEXT/CWIE]

  1. /*
  2.     GEQDRAW.H
  3.  
  4.     Graphic Elements QD compatibility module wrapper.
  5.  
  6.     Copyright 1995 by Al Evans. All rights reserved.
  7.  
  8. */
  9.  
  10.  
  11. #ifndef GEQDRAW
  12. #define GEQDRAW
  13.  
  14.  
  15. #if defined(TARGET_IS_WIN95)
  16. #if USING_DIRECTDRAW
  17. #include "GEQDWinDD.h"
  18. #else
  19. #include "GEQDWinDIB.h"
  20. #endif
  21. #elif defined (TARGET_IS_BEOS)
  22. #include "GEQDBe.h"
  23. #endif
  24.  
  25. #endif    // GEQDRAW
  26.